diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-08-19 19:57:57 +0200 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-08-19 19:57:57 +0200 |
commit | 329fc73b94852697f7a057957a714d961a2e9e3b (patch) | |
tree | 6c6ab199d838bc56ddb93e7eeecb721afcec127b /web/pw-server/src/routes/bots/[bot_name].svelte | |
parent | 87f6a9c455726ad0cf502a316d98db8da1d1806a (diff) | |
download | planetwars.dev-329fc73b94852697f7a057957a714d961a2e9e3b.tar.xz planetwars.dev-329fc73b94852697f7a057957a714d961a2e9e3b.zip |
create global scss styles
Diffstat (limited to 'web/pw-server/src/routes/bots/[bot_name].svelte')
-rw-r--r-- | web/pw-server/src/routes/bots/[bot_name].svelte | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/web/pw-server/src/routes/bots/[bot_name].svelte b/web/pw-server/src/routes/bots/[bot_name].svelte index 99278df..471e530 100644 --- a/web/pw-server/src/routes/bots/[bot_name].svelte +++ b/web/pw-server/src/routes/bots/[bot_name].svelte @@ -97,7 +97,7 @@ <MatchList {matches} /> {#if matches.length > 0} <div class="btn-container"> - <a class="btn-view-more" href={`/matches?bot=${bot["name"]}`}>All matches</a> + <a class="btn" href={`/matches?bot=${bot["name"]}`}>All matches</a> </div> {/if} </div> @@ -118,7 +118,6 @@ </div> <style lang="scss"> - @import "src/styles/variables.scss"; .container { width: 800px; max-width: 80%; @@ -151,14 +150,6 @@ padding: 24px; text-align: center; } - .btn-view-more { - color: $btn-text-color; - font-size: 14px; - text-decoration: none; - padding: 6px 16px; - border: 1px solid $btn-border-color; - border-radius: 5px; - } .versions { margin: 30px 0; |